翻訳と辞書
Words near each other
・ Cyphella
・ Cyphellaceae
・ Cyphellocalathus
・ Cyphelloid fungi
・ Cyphellostereum
・ Cyphenothrin
・ Cypher
・ Cypher (album)
・ Cypher (band)
・ Cypher (DC Comics)
・ Cypher (film)
・ Cypher (Marvel Comics)
・ Cypher (Spektr album)
・ Cypher (video game)
・ Cypher in the Snow
Cypher Query Language
・ Cypher stent
・ Cypher Zero
・ Cyphernetics
・ Cyphernomicon
・ Cypherotylus asperus
・ Cypherpunk
・ Cypherpunk anonymous remailer
・ Cypherpunks (book)
・ Cyphers
・ Cypheus Bunton
・ Cyphia
・ Cyphicerini
・ Cyphipelta
・ Cypho purpurascens


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Cypher Query Language : ウィキペディア英語版
Cypher Query Language
Cypher is a declarative graph query language for the graph database, Neo4j that allows for expressive and efficient querying and updating of the graph store. Cypher is a relatively simple but still very powerful language. Very complicated database queries can easily be expressed through Cypher. This allows users to focus on their domain instead of getting lost in database access.〔(【引用サイトリンク】title= Cypher Introduction )
== Syntax ==
Cypher contains a variety of clauses. Among the most common are: MATCH and WHERE. These functions are slightly different than in SQL. MATCH is used for describing the structure of the pattern searched for, primarily based on relationships. WHERE is used to add additional constraints to patterns. For example:〔(【引用サイトリンク】title= 10.1. Match - - The Neo4j Manual v2.1.2 )

MATCH (charlie:Person )-()-(movie:Movie)
RETURN movie
Cypher additionally contains clauses for writing, updating, and deleting data. CREATE and DELETE are used to create and delete nodes and relationships. SET and REMOVE are used to set values to properties and add labels on nodes. It should be noted that nodes can only be deleted when they have no other relationships still existing. For example:〔

MATCH (start:Content)-()->(content:Content)
WHERE content.source = 'user'
OPTIONAL MATCH (content)-()-()
DELETE r, content

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Cypher Query Language」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.